home *** CD-ROM | disk | FTP | other *** search
/ MacFormat UK 83 / MF_UK_83_1.iso / Shareware Plus / Internet / QuickGo 1.0.1 / QuickGo! 1.0.1 PPC / QuickGo! 1.0.1 PPC.rsrc / STR#_5000.txt < prev    next >
Encoding:
Text File  |  1999-08-17  |  2.3 KB  |  162 lines

  1. on...=on xxx
  2. |
  3. end xxx
  4.  
  5. function...=function xxx
  6. |
  7. end xxx
  8.  
  9. --
  10.  
  11. on startUp=on startUp
  12. |
  13. end startUp
  14.  
  15. on openProject...=on openProject
  16. |
  17. end openProject
  18.  
  19. on openWindow...=on openWindow
  20. |
  21. end openWindow
  22.  
  23. on openBackground...=on openBackground
  24. |
  25. end openBackground
  26.  
  27. on openCard...=on openCard
  28. |
  29. end openCard
  30.  
  31. --
  32.  
  33. on closeCard...=on closeCard
  34. |
  35. end closeCard
  36.  
  37. on closeBackground...=on closeBackground
  38. |
  39. end closeBackground
  40.  
  41. on closeWindow...=on closeWindow
  42. |
  43. end closeWindow
  44.  
  45. on closeProject...=on closeProject
  46. |
  47. end closeProject
  48.  
  49. on quitSuperCard...=on quitSuperCard
  50. |
  51. end quitSuperCard
  52.  
  53. --
  54.  
  55. if...then...=if |<logical>| then <true_statements>
  56.  
  57. if...then...end=if |<logical>| then
  58. -- true statements
  59.  
  60. end if
  61.  
  62. if...then...else...=if |<logical>| then
  63. -- true statements
  64.  
  65. else <false_statements>
  66.  
  67. if...then...else...end=if |<logical>| then
  68. -- true statements
  69.  
  70. else
  71. -- false statements
  72.  
  73. end if
  74.  
  75. if...then...else if...else...end=if |<logical1>| then
  76. -- logical 1 true statements
  77.  
  78. else if <logical2> then
  79. -- logical 2 true statements
  80.  
  81. else
  82. -- both false statements
  83.  
  84. end if
  85.  
  86. switch...case...end=switch |<condition>|
  87. case <value1>
  88. -- case 1 statements
  89.  
  90. exit switch
  91. case <value2>
  92. -- case 2 statements
  93.  
  94. exit switch
  95. end switch
  96.  
  97. try...catch...throw...end=try 
  98. |<statements>|
  99. [throw <errorNumber>]
  100. catch <errorNumber1>
  101. <statements>
  102. catch <errorNumber2>
  103. <statements>
  104. end try
  105.  
  106. --
  107.  
  108. repeat forever...=repeat forever
  109. |
  110. end repeat
  111.  
  112. repeat for...=repeat for |<value>| times
  113.  
  114. end repeat
  115.  
  116. repeat until...=repeat until |<logical>|
  117.  
  118. end repeat
  119.  
  120. repeat while...=repeat while |<logical>|
  121.  
  122. end repeat
  123.  
  124. repeat with...=repeat with |<variable>| = <value1> to <value2>
  125.  
  126. end repeat
  127.  
  128. --
  129.  
  130. itemDelimiter=put the itemDelimiter into oldDelimiter
  131. set the itemDelimiter to |<character>|
  132.  
  133. set the itemDelimiter to oldDelimiter
  134.  
  135. lineDelimiter=put the lineDelimiter into oldDelimiter
  136. set the lineDelimiter to |<character>|
  137.  
  138. set the lineDelimiter to oldDelimiter
  139.  
  140. lockScreen=set the lockScreen to true
  141. |
  142. set the lockScreen to false
  143.  
  144. lockMessages=set the lockMessages to true
  145. |
  146. set the lockMessages to false
  147.  
  148. multiEffect=set the multiEffect to true
  149. |
  150. set the multiEffect to false
  151.  
  152. numberFormat=put the numberFormat into oldFormat
  153. set the numberFormat to |<character>|
  154.  
  155. set the numberFormat to oldFormat
  156.  
  157. wordDelimiter=put the wordDelimiter into oldDelimiter
  158. set the wordDelimiter to |<character>|
  159.  
  160. set the wordDelimiter to oldDelimiter
  161.  
  162.